home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / gcc / gcc2.7.0 / gcc270_doc.lha / gnu / man / cat1 / g++.0 < prev    next >
Encoding:
Text File  |  1995-08-24  |  26.7 KB  |  595 lines

  1.  
  2.  
  3.  
  4. G++(1)                      GNU Tools                      G++(1)
  5.  
  6.  
  7. NNAAMMEE
  8.        g++ - GNU project C++ Compiler (v2.4)
  9.  
  10. SSYYNNOOPPSSIISS
  11.        g++ [[_o_p_t_i_o_n | _f_i_l_e_n_a_m_e ]...
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.        The C and C++ compilers are integrated; gg++++ is a script to
  15.        call ggcccc wwiitthh ooppttiioonnss ttoo  rreeccooggnniizzee  CC++++..   ggcccc  processes
  16.        input  files  through  one or more of four stages: prepro-
  17.        cessing, compilation, assembly,  and  linking.   This  man
  18.        page  contains  full  descriptions  for  _o_n_l_y C++ specific
  19.        aspects of the compiler, though it also contains summaries
  20.        of some general-purpose options.  For a fuller explanation
  21.        of the compiler, see ggcccc(11).
  22.  
  23.        C++ source files use one of the suffixes `..CC',  `..cccc',  or
  24.        `..ccxxxx'; preprocessed C++ files use the suffix `..iiii'.
  25.  
  26. OOPPTTIIOONNSS
  27.        There  are many command-line options, including options to
  28.        control details of optimization, warnings, and code gener-
  29.        ation,  which  are  common  to both ggcccc and gg++++.  For full
  30.        information on all options, see ggcccc(11).
  31.  
  32.        Options must be separate: `--ddrr' is  quite  different  from
  33.        `--dd --rr '.
  34.  
  35.        Most `--ff' and `--WW' options have two contrary forms: --ff_n_a_m_e
  36.        and --ffnnoo--_n_a_m_e (or --WW_n_a_m_e and  --WWnnoo--_n_a_m_e).  Only  the  non-
  37.        default forms are shown here.
  38.  
  39.  
  40.        --cc     Compile  or  assemble  the source files, but do not
  41.               link.  The compiler output is an object file corre-
  42.               sponding to each source file.
  43.  
  44.        --DD_m_a_c_r_o
  45.               Define macro _m_a_c_r_o with the string `11' as its defi-
  46.               nition.
  47.  
  48.        --DD_m_a_c_r_o==_d_e_f_n
  49.               Define macro _m_a_c_r_o as _d_e_f_n.
  50.  
  51.        --EE     Stop after the preprocessing stage; do not run  the
  52.               compiler proper.  The output is preprocessed source
  53.               code, which is sent to the standard output.
  54.  
  55.        --ffaallll--vviirrttuuaall
  56.               Treat all possible  member  functions  as  virtual,
  57.               implicitly.   All member functions (except for con-
  58.               structor functions and nneeww or ddeelleettee member  opera-
  59.               tors) are treated as virtual functions of the class
  60.               where they appear.
  61.  
  62.  
  63.  
  64. GNU Tools                   30apr1993                           1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. G++(1)                      GNU Tools                      G++(1)
  71.  
  72.  
  73.               This does not mean that all calls to  these  member
  74.               functions  will  be made through the internal table
  75.               of virtual functions.   Under  some  circumstances,
  76.               the  compiler  can determine that a call to a given
  77.               virtual function can be  made  directly;  in  these
  78.               cases the calls are direct in any case.
  79.  
  80.        --ffddoollllaarrss--iinn--iiddeennttiiffiieerrss
  81.               Permit  the use of `$$' in identifiers.  Traditional
  82.               C allowed the character `$$' to form part of identi-
  83.               fiers;  by  default,  GNU C also allows this.  How-
  84.               ever, ANSI C forbids `$$' in  identifiers,  and  GNU
  85.               C++  also  forbids  it by default on most platforms
  86.               (though on some platforms it's enabled  by  default
  87.               for GNU C++ as well).
  88.  
  89.        --ffeelliiddee--ccoonnssttrruuccttoorrss
  90.               Use  this  option  to  instruct  the compiler to be
  91.               smarter  about  when  it  can  elide  constructors.
  92.               Without this flag, GNU C++ and cfront both generate
  93.               effectively the same code for:
  94.  
  95.               A foo ();
  96.               A x (foo ());   // x initialized by `foo ()', no ctor called
  97.               A y = foo ();   // call to `foo ()' heads to tempo-
  98.               rary,
  99.                               // y is initialized from the tempo-
  100.               rary.
  101.  
  102.               Note  the difference!  With this flag, GNU C++ ini-
  103.               tializes `yy' directly from the call to ffoooo (()) with-
  104.               out going through a temporary.
  105.  
  106.        --ffeennuumm--iinntt--eeqquuiivv
  107.               Normally  GNU C++ allows conversion of eennuumm to iinntt,
  108.               but not the other way around.  Use this  option  if
  109.               you want GNU C++ to allow conversion of iinntt to eennuumm
  110.               as well.
  111.  
  112.        --ffeexxtteerrnnaall--tteemmppllaatteess
  113.               Produce smaller code for template declarations,  by
  114.               generating  only  a  single  copy  of each template
  115.               function where it is defined.  To use  this  option
  116.               successfully, you must also mark all files that use
  117.               templates with either `##pprraaggmmaa iimmpplleemmeennttaattiioonn' (the
  118.               definition)  or `##pprraaggmmaa iinntteerrffaaccee' (declarations).
  119.  
  120.               When     your     code     is     compiled     with
  121.               `--ffeexxtteerrnnaall--tteemmppllaatteess', all template instantiations
  122.               are external.  You must arrange for  all  necessary
  123.               instantiations  to  appear  in  the  implementation
  124.               file; you can do this with a  ttyyppeeddeeff  that  refer-
  125.               ences  each instantiation needed.  Conversely, when
  126.               you    compile    using    the    default    option
  127.  
  128.  
  129.  
  130. GNU Tools                   30apr1993                           2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. G++(1)                      GNU Tools                      G++(1)
  137.  
  138.  
  139.               `--ffnnoo--eexxtteerrnnaall--tteemmppllaatteess',  all template instantia-
  140.               tions are explicitly internal.
  141.  
  142.        --ffnnoo--ggnnuu--lliinnkkeerr
  143.               Do not output global initializations (such  as  C++
  144.               constructors  and  destructors) in the form used by
  145.               the GNU linker (on systems where the GNU linker  is
  146.               the  standard  method  of handling them).  Use this
  147.               option when you want to use a non-GNU linker, which
  148.               also  requires  using  the ccoolllleecctt22 program to make
  149.               sure the system linker  includes  constructors  and
  150.               destructors.   (ccoolllleecctt22  is included in the GNU CC
  151.               distribution.)  For systems  which  _m_u_s_t  use  ccooll--
  152.               lleecctt22,  the compiler driver ggcccc is configured to do
  153.               this automatically.
  154.  
  155.        --ffmmeemmooiizzee--llooookkuuppss
  156.  
  157.        --ffssaavvee--mmeemmooiizzeedd
  158.               These flags are used to get the compiler to compile
  159.               programs  faster using heuristics.  They are not on
  160.               by default since they are only effective about half
  161.               the time.  The other half of the time programs com-
  162.               pile more slowly (and take more memory).
  163.  
  164.               The first time the compiler must build a call to  a
  165.               member function (or reference to a data member), it
  166.               must (1) determine  whether  the  class  implements
  167.               member  functions  of  that name; (2) resolve which
  168.               member function to call  (which  involves  figuring
  169.               out  what  sorts  of  type  conversions  need to be
  170.               made); and (3) check the visibility of  the  member
  171.               function  to  the  caller.   All of this adds up to
  172.               slower compilation.  Normally, the  second  time  a
  173.               call  is made to that member function (or reference
  174.               to that data member), it must go through  the  same
  175.               lengthy  process  again.  This means that code like
  176.               this
  177.  
  178.                 cout << "This " << p << " has " << n << " legs.\n";
  179.  
  180.               makes six passes through all three steps.  By using
  181.               a software cache, a ``hit''  significantly  reduces
  182.               this  cost.   Unfortunately, using the cache intro-
  183.               duces another layer of  mechanisms  which  must  be
  184.               implemented,   and  so  incurs  its  own  overhead.
  185.               `--ffmmeemmooiizzee--llooookkuuppss' enables the software cache.
  186.  
  187.               Because access privileges (visibility)  to  members
  188.               and  member  functions may differ from one function
  189.               context to the next, gg++++  may  need  to  flush  the
  190.               cache. With the `--ffmmeemmooiizzee--llooookkuuppss' flag, the cache
  191.               is flushed after every function that  is  compiled.
  192.               The   `-fsave-memoized'   flag   enables  the  same
  193.  
  194.  
  195.  
  196. GNU Tools                   30apr1993                           3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. G++(1)                      GNU Tools                      G++(1)
  203.  
  204.  
  205.               software cache, but when  the  compiler  determines
  206.               that  the  context  of  the  last function compiled
  207.               would yield the same access privileges of the  next
  208.               function  to compile, it preserves the cache.  This
  209.               is most helpful when defining many member functions
  210.               for  the  same  class: with the exception of member
  211.               functions which are friends of other classes,  each
  212.               member  function has exactly the same access privi-
  213.               leges as every other, and the  cache  need  not  be
  214.               flushed.
  215.  
  216.        --ffnnoo--ddeeffaauulltt--iinnlliinnee
  217.               Do  not  make  member  functions  inline by default
  218.               merely because they are defined  inside  the  class
  219.               scope.   Otherwise,  when  you  specify  --OO, member
  220.               functions defined inside class scope  are  compiled
  221.               inline  by  default;  i.e.,  you  don't need to add
  222.               `iinnlliinnee' in front of the member function name.
  223.  
  224.        --ffnnoo--ssttrriicctt--pprroottoottyyppee
  225.               Consider the declaration iinntt ffoooo (());;.  In C++, this
  226.               means that the function ffoooo takes no arguments.  In
  227.               ANSI C, this is declared iinntt ffoooo((vvooiidd));;.  With  the
  228.               flag  `--ffnnoo--ssttrriicctt--pprroottoottyyppee',  declaring functions
  229.               with no arguments is equivalent  to  declaring  its
  230.               argument  list  to be untyped, i.e., iinntt ffoooo (());; is
  231.               equivalent to saying iinntt ffoooo ((......));;.
  232.  
  233.        --ffnnoonnnnuullll--oobbjjeeccttss
  234.               Normally, GNU C++  makes  conservative  assumptions
  235.               about  objects  reached  through  references.   For
  236.               example, the compiler must check that  `aa'  is  not
  237.               null in code like the following:
  238.                   obj &a = g ();
  239.                   a.f (2);
  240.               Checking that references of this sort have non-null
  241.               values requires extra  code,  however,  and  it  is
  242.               unnecessary   for   many  programs.   You  can  use
  243.               `--ffnnoonnnnuullll--oobbjjeeccttss' to omit the checks for null, if
  244.               your  program doesn't require the default checking.
  245.  
  246.        --ffhhaannddllee--ssiiggnnaattuurreess
  247.  
  248.        --ffnnoo--hhaannddllee--ssiiggnnaattuurreess
  249.               These options control the recognition of the ssiiggnnaa--
  250.               ttuurree  and  ssiiggooff constructs for specifying abstract
  251.               types.  By default, these constructs are not recog-
  252.               nized.
  253.  
  254.        --fftthhiiss--iiss--vvaarriiaabbllee
  255.               The  incorporation  of user-defined free store man-
  256.               agement into C++ has made  assignment  to  tthhiiss  an
  257.               anachronism.   Therefore, by default GNU C++ treats
  258.               the type of tthhiiss in a member function of ccllaassss XX to
  259.  
  260.  
  261.  
  262. GNU Tools                   30apr1993                           4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. G++(1)                      GNU Tools                      G++(1)
  269.  
  270.  
  271.               be  XX  **ccoonnsstt.   In  other  words, it is illegal to
  272.               assign to tthhiiss  within  a  class  member  function.
  273.               However,   for  backwards  compatibility,  you  can
  274.               invoke    the     old     behavior     by     using
  275.               `--fftthhiiss--iiss--vvaarriiaabbllee'.
  276.  
  277.        --gg     Produce debugging information in the operating sys-
  278.               tem's native format (for DBX or SDB or DWARF).  GDB
  279.               also  can work with this debugging information.  On
  280.               most systems that use DBX format, `--gg' enables  use
  281.               of  extra  debugging  information that only GDB can
  282.               use.
  283.  
  284.               Unlike most other C compilers, GNU CC allows you to
  285.               use  `--gg'  with `--OO'.  The shortcuts taken by opti-
  286.               mized  code  may  occasionally  produce  surprising
  287.               results:  some variables you declared may not exist
  288.               at all; flow of control may briefly move where  you
  289.               did  not expect it; some statements may not be exe-
  290.               cuted because  they  compute  constant  results  or
  291.               their  values were already at hand; some statements
  292.               may execute in different places because  they  were
  293.               moved out of loops.
  294.  
  295.               Nevertheless  it proves possible to debug optimized
  296.               output.  This makes it reasonable to use the  opti-
  297.               mizer for programs that might have bugs.
  298.  
  299.        --II_d_i_r    Append  directory  _d_i_r to the list of directories
  300.               searched for include files.
  301.  
  302.        --LL_d_i_r   Add directory _d_i_r to the list of directories to be
  303.               searched for `--ll'.
  304.  
  305.        --ll_l_i_b_r_a_r_y
  306.                 Use the library named _l_i_b_r_a_r_y when linking.  (C++
  307.               programs often require `-lg++' for successful link-
  308.               ing.)
  309.  
  310.        --nnoossttddiinncc
  311.               Do  not  search the standard system directories for
  312.               header files.  Only the directories you have speci-
  313.               fied with --II options (and the current directory, if
  314.               appropriate) are searched.
  315.  
  316.        --nnoossttddiinncc++++
  317.               Do not search for  header  files  in  the  standard
  318.               directories  specific  to  C++, but do still search
  319.               the other standard directories.   (This  option  is
  320.               used when building libg++.)
  321.  
  322.        --OO     Optimize.   Optimizing  compilation  takes somewhat
  323.               more time, and a lot more memory for a large  func-
  324.               tion.
  325.  
  326.  
  327.  
  328. GNU Tools                   30apr1993                           5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. G++(1)                      GNU Tools                      G++(1)
  335.  
  336.  
  337.        --oo _f_i_l_e
  338.                Place output in file _f_i_l_e.
  339.  
  340.        --SS     Stop  after the stage of compilation proper; do not
  341.               assemble.  The output is an assembler code file for
  342.               each non-assembler input file specified.
  343.  
  344.        --ttrraaddiittiioonnaall
  345.               Attempt  to  support  some aspects of traditional C
  346.               compilers.
  347.  
  348.               Specifically, for both C and C++ programs:
  349.  
  350.           +o   In the preprocessor, comments convert to nothing at
  351.               all,  rather  than  to a space.  This allows tradi-
  352.               tional token concatenation.
  353.  
  354.           +o   In the preprocessor, macro arguments are recognized
  355.               within  string constants in a macro definition (and
  356.               their values are stringified, though without  addi-
  357.               tional quote marks, when they appear in such a con-
  358.               text).  The preprocessor always considers a  string
  359.               constant to end at a newline.
  360.  
  361.           +o   The  preprocessor  does  not  predefine  the  macro
  362.               ____SSTTDDCC____ when you  use  `--ttrraaddiittiioonnaall',  but  still
  363.               predefines____GGNNUUCC____  (since the GNU extensions indi-
  364.               cated   by   ____GGNNUUCC____   are   not    affected    by
  365.               `--ttrraaddiittiioonnaall').  If you need to write header files
  366.               that  work   differently   depending   on   whether
  367.               `--ttrraaddiittiioonnaall'  is in use, by testing both of these
  368.               predefined macros you can distinguish  four  situa-
  369.               tions:  GNU C, traditional GNU C, other ANSI C com-
  370.               pilers, and other old C compilers.
  371.  
  372.           +o   In the preprocessor, comments convert to nothing at
  373.               all,  rather  than  to a space.  This allows tradi-
  374.               tional token concatenation.
  375.  
  376.           +o   In the preprocessor, macro arguments are recognized
  377.               within  string constants in a macro definition (and
  378.               their values are stringified, though without  addi-
  379.               tional quote marks, when they appear in such a con-
  380.               text).  The preprocessor always considers a  string
  381.               constant to end at a newline.
  382.  
  383.           +o   The  preprocessor  does  not  predefine  the  macro
  384.               ____SSTTDDCC____ when you  use  `--ttrraaddiittiioonnaall',  but  still
  385.               predefines____GGNNUUCC____  (since the GNU extensions indi-
  386.               cated   by   ____GGNNUUCC____   are   not    affected    by
  387.               `--ttrraaddiittiioonnaall').  If you need to write header files
  388.               that  work   differently   depending   on   whether
  389.               `--ttrraaddiittiioonnaall'  is in use, by testing both of these
  390.               predefined  macros   you   can   distinguish   four
  391.  
  392.  
  393.  
  394. GNU Tools                   30apr1993                           6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. G++(1)                      GNU Tools                      G++(1)
  401.  
  402.  
  403.               situations:  GNU C, traditional GNU C, other ANSI C
  404.               compilers, and other old C compilers.
  405.  
  406.  
  407.           +o   String ``constants'' are not necessarily  constant;
  408.               they  are  stored  in writable space, and identical
  409.               looking constants are allocated separately.
  410.  
  411.               For C++ programs only (not C),  `--ttrraaddiittiioonnaall'  has
  412.               one  additional  effect: assignment to tthhiiss is per-
  413.               mitted.   This  is  the  same  as  the  effect   of
  414.               `--fftthhiiss--iiss--vvaarriiaabbllee'.
  415.  
  416.        --UU_m_a_c_r_o
  417.               Undefine macro _m_a_c_r_o.
  418.  
  419.        --WWaallll  Issue  warnings  for  conditions  which  pertain to
  420.               usage  that  we  recommend  avoiding  and  that  we
  421.               believe  is easy to avoid, even in conjunction with
  422.               macros.
  423.  
  424.        --WWeennuumm--ccllaasshh
  425.               Warn when converting between different  enumeration
  426.               types.
  427.  
  428.        --WWoovveerrllooaaddeedd--vviirrttuuaall
  429.               In  a  derived  class,  the  definitions of virtual
  430.               functions must match the type signature of  a  vir-
  431.               tual function declared in the base class.  Use this
  432.               option to request warnings  when  a  derived  class
  433.               declares  a  function  that  may  be  an  erroneous
  434.               attempt to define a virtual function: that is, warn
  435.               when  a  function  with  the same name as a virtual
  436.               function in the base class, but with a type  signa-
  437.               ture  that doesn't match any virtual functions from
  438.               the base class.
  439.  
  440.        --WWtteemmppllaattee--ddeebbuuggggiinngg
  441.               When using templates in  a  C++  program,  warn  if
  442.               debugging is not yet fully available.
  443.  
  444.        --ww     Inhibit all warning messages.
  445.  
  446.        ++ee_N    Control  how virtual function definitions are used,
  447.               in a fashion compatible with ccffrroonntt 1.x.
  448.  
  449.  
  450.  
  451. PPRRAAGGMMAASS
  452.        Two `##pprraaggmmaa' directives are supported  for  GNU  C++,  to
  453.        permit  using  the same header file for two purposes: as a
  454.        definition of interfaces to a given object class,  and  as
  455.        the  full definition of the contents of that object class.
  456.  
  457.  
  458.  
  459.  
  460. GNU Tools                   30apr1993                           7
  461.  
  462.  
  463.  
  464.  
  465.  
  466. G++(1)                      GNU Tools                      G++(1)
  467.  
  468.  
  469.        ##pprraaggmmaa iinntteerrffaaccee
  470.               Use this directive  in  header  files  that  define
  471.               object classes, to save space in most of the object
  472.               files that  use  those  classes.   Normally,  local
  473.               copies  of  certain  information  (backup copies of
  474.               inline member functions, debugging information, and
  475.               the  internal  tables  that implement virtual func-
  476.               tions) must  be  kept  in  each  object  file  that
  477.               includes  class  definitions.   You  can  use  this
  478.               pragma to avoid such duplication.   When  a  header
  479.               file  containing `##pprraaggmmaa iinntteerrffaaccee' is included in
  480.               a compilation, this auxiliary information will  not
  481.               be  generated  (unless  the  main input source file
  482.               itself uses  `##pprraaggmmaa  iimmpplleemmeennttaattiioonn').   Instead,
  483.               the  object  files  will  contain  references to be
  484.               resolved at link time.
  485.  
  486.        ##pprraaggmmaa iimmpplleemmeennttaattiioonn
  487.  
  488.        ##pprraaggmmaa iimmpplleemmeennttaattiioonn ""_o_b_j_e_c_t_s..hh""
  489.               Use this pragma in a main input file, when you want
  490.               full output from included header files to be gener-
  491.               ated (and made  globally  visible).   The  included
  492.               header   file,   in   turn,   should  use  `##pprraaggmmaa
  493.               iinntteerrffaaccee'.  Backup copies of inline  member  func-
  494.               tions,  debugging  information,  and  the  internal
  495.               tables used to implement virtual functions are  all
  496.               generated in implementation files.
  497.  
  498.               If  you  use `##pprraaggmmaa iimmpplleemmeennttaattiioonn' with no argu-
  499.               ment, it applies to an include file with  the  same
  500.               basename  as  your  source  file;  for  example, in
  501.               `aallllccllaassss..cccc', `##pprraaggmmaa iimmpplleemmeennttaattiioonn'  by  itself
  502.               is    equivalent    to    `##pprraaggmmaa   iimmpplleemmeennttaattiioonn
  503.               ""aallllccllaassss..hh""'.  Use the string argument if you want
  504.               a  single  implementation file to include code from
  505.               multiple header files.
  506.  
  507.               There is no way to split up the contents of a  sin-
  508.               gle header file into multiple implementation files.
  509.  
  510. FFIILLEESS
  511.        file.h             C header (preprocessor) file
  512.        file.i             preprocessed C source file
  513.        file.C             C++ source file
  514.        file.cc            C++ source file
  515.        file.cxx           C++ source file
  516.        file.s             assembly language file
  517.        file.o             object file
  518.        a.out              link edited output
  519.        _T_M_P_D_I_R/cc*         temporary files
  520.        _L_I_B_D_I_R/cpp         preprocessor
  521.        _L_I_B_D_I_R/cc1plus     compiler
  522.        _L_I_B_D_I_R/collect     linker  front  end   needed   on   some
  523.  
  524.  
  525.  
  526. GNU Tools                   30apr1993                           8
  527.  
  528.  
  529.  
  530.  
  531.  
  532. G++(1)                      GNU Tools                      G++(1)
  533.  
  534.  
  535.        machines
  536.        _L_I_B_D_I_R/libgcc.a    GCC subroutine library
  537.        /lib/crt[01n].o    start-up routine
  538.        _L_I_B_D_I_R/ccrt0       additional start-up routine for C++
  539.        /lib/libc.a        standard C library, see _i_n_t_r_o(3)
  540.        /usr/include       standard directory for ##iinncclluuddee files
  541.        _L_I_B_D_I_R/include     standard  gcc  directory  for  ##iinncclluuddee
  542.        files
  543.        _L_I_B_D_I_R/g++-include additional g++ directory for ##iinncclluuddee
  544.  
  545.        _L_I_B_D_I_R is usually //uussrr//llooccaall//lliibb//_m_a_c_h_i_n_e/_v_e_r_s_i_o_n.
  546.        _T_M_P_D_I_R comes from the environment variable TTMMPPDDIIRR (default
  547.        //uussrr//ttmmpp if available, else //ttmmpp).
  548.  
  549. SSEEEE AALLSSOO
  550.        gcc(1),  cpp(1),  as(1),  ld(1),  gdb(1),  adb(1), dbx(1),
  551.        sdb(1).
  552.        `ggcccc', `ccpppp', `aass',``ld'',, and `ggddbb' entries in iinnffoo.
  553.        _U_s_i_n_g _a_n_d _P_o_r_t_i_n_g _G_N_U _C_C _(_f_o_r  _v_e_r_s_i_o_n  _2_._0_),  Richard  M.
  554.        Stallman;  _T_h_e _C _P_r_e_p_r_o_c_e_s_s_o_r, Richard M. Stallman; _D_e_b_u_g_-
  555.        _g_i_n_g _w_i_t_h _G_D_B_: _t_h_e _G_N_U _S_o_u_r_c_e_-_L_e_v_e_l _D_e_b_u_g_g_e_r,  Richard  M.
  556.        Stallman and Roland H. Pesch; _U_s_i_n_g _a_s_: _t_h_e _G_N_U _A_s_s_e_m_b_l_e_r,
  557.        Dean Elsner, Jay Fenlason & friends; _g_l_d_: _t_h_e _G_N_U  _l_i_n_k_e_r,
  558.        Steve Chamberlain and Roland Pesch.
  559.  
  560.  
  561. BBUUGGSS
  562.        For  instructions  on how to report bugs, see the GCC man-
  563.        ual.
  564.  
  565.  
  566. CCOOPPYYIINNGG
  567.        Copyright (c) 1991, 1992, 1993 Free  Software  Foundation,
  568.        Inc.
  569.  
  570.        Permission  is  granted  to  make  and distribute verbatim
  571.        copies of this manual provided the  copyright  notice  and
  572.        this permission notice are preserved on all copies.
  573.  
  574.        Permission is granted to copy and distribute modified ver-
  575.        sions of this manual under  the  conditions  for  verbatim
  576.        copying,  provided  that the entire resulting derived work
  577.        is distributed under the  terms  of  a  permission  notice
  578.        identical to this one.
  579.  
  580.        Permission  is granted to copy and distribute translations
  581.        of this manual into another language, under the above con-
  582.        ditions for modified versions, except that this permission
  583.        notice may be included in  translations  approved  by  the
  584.        Free  Software  Foundation  instead  of  in  the  original
  585.        English.
  586.  
  587. AAUUTTHHOORRSS
  588.        See the GNU CC Manual for the contributors to GNU CC.
  589.  
  590.  
  591.  
  592. GNU Tools                   30apr1993                           9
  593.  
  594.  
  595.